home *** CD-ROM | disk | FTP | other *** search
Java Source | 2000-09-08 | 343 b | 19 lines |
- class ThrowDemo {
- static void demoproc() {
- try {
- throw new NullPointerException("demo");
- }
- catch (NullPointerException e) {
- System.out.println("caught inside demoproc");
- throw e;
- } }
-
- public static void main(String args[]) {
- try {
- demoproc();
- }
- catch(NullPointerException e) {
- System.out.println("recaught: " + e);
- }
- } }
-